Jeg anbefaler ikke at du gør dette, men det burde virke:
I index php:
<link href="style.php?bg=<?php echo 'blue';?>" type="text/css" rel="stylesheet" />
I style.php
<?php
header('Content-type: text/css');
?>
body{
background-color:<?php echo $_GET['bg'];?>;
}